﻿/*
 * class Object
 */
class Object {

  public boolean equals( Object other ) {
    return this == other;
  }

  public native int hashCode();

  public String toString() {
    return "[Object]";
  }
}
